home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-04 / fmodla13.zip / DTA.DEF < prev    next >
Text File  |  1992-01-29  |  343b  |  21 lines

  1. DEFINITION MODULE DTA;
  2.  
  3. (* (C) Copyright 1987 Fitted Software Tools. All rights reserved. *)
  4.  
  5.  
  6. (* Get / Set DOS Disk Transfer Address *)
  7.  
  8. FROM SYSTEM IMPORT ADDRESS;
  9.  
  10.  
  11. PROCEDURE GetDTA( VAR adrs :ADDRESS );
  12. (*
  13.     returns the current DTA at adrs.
  14. *)
  15.  
  16. PROCEDURE SetDTA( adrs :ADDRESS );
  17. (*
  18.     sets DTA to adrs
  19. *)
  20.  
  21. END DTA.